home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscDragViews / MiscDVInspector.h < prev    next >
Encoding:
Text File  |  1995-10-16  |  807 b   |  40 lines

  1. /***************************************************************************
  2.  * CLASS:        MiscDVInspector     (MiscDragViewInspector)
  3.  * PROGRAMMER:    Todd Thomas            todd@avocado.cuc.ab.ca
  4.  * DATE:        Dec 10, 1993
  5.  * Copyright (C) 1995 Robert Todd Thomas
  6.  * Use is governed by the MiscKit license
  7.  *
  8.  *    Allows you to set a few of the dragging options. 
  9.  *
  10.  ***************************************************************************/
  11.  
  12. #import <appkit/appkit.h>
  13.  
  14. #import <apps/InterfaceBuilder.h>
  15.  
  16.  
  17. @interface MiscDVInspector : IBInspector
  18. {
  19.     id    optionMatrix;
  20.     id  borderMatrix;
  21.     id  iconMatrix;
  22. }
  23.  
  24. - init;
  25. - revert: sender;
  26. - optionsChanged: sender;
  27. - borderChanged: sender;
  28. - iconsChanged: sender;
  29. - (BOOL)wantsButtons;
  30.  
  31. @end
  32.  
  33.  
  34. @interface MiscDragView (IBInspector)
  35.  
  36. - (const char *)getInspectorClassName;
  37.  
  38. @end
  39.  
  40.